home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-05-31 | 543 b | 25 lines | [TEXT/CWIE] |
- //Copyright (c) 1997 Aidan Cully
- //All rights reserved
-
- #ifndef __PICCONTROLS_H
- #define __PICCONTROLS_H
-
- #include "CLControl.h"
-
- class TPicControl:public TControl {
- private:
- SInt16 mhResid;
- protected:
- CIconHandle picture;
- virtual void TrackMouseChange( TMouseEvent*, Boolean );
- virtual void TrackMouseUp( TMouseEvent* );
- virtual void TrackMouseDown( TMouseEvent* );
- public:
- TPicControl( TLayoutBranch*, SInt16 );
- virtual void DrawSelf( TDrawSlate* );
- Rect GetLargestSize();
- virtual Boolean Init();
- virtual Boolean Close();
- };
-
- #endif